home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / archives / com / internet / stik / demon_st.lzh / DEFAULT.CFG next >
Text File  |  1995-09-22  |  7KB  |  230 lines

  1. # ET config file format
  2. #
  3. # VAR = VALUE           :standard format
  4. #
  5. #   Non existent vars are 0 (FALSE) by default.
  6. #   Variables without "= value" are set to ON
  7. #   Variables with " = " but no value are set to 0. (ie: = nothing)
  8. #
  9. #   TRUE  and ON  are acceptable substitutes for 1
  10. #   FALSE and OFF are acceptable substitutes for 0
  11. #
  12. #   Lines not beginning with an alphabetic character are ignored, but
  13. #   this whole file is kept in memory during the session!!
  14. #   So if you want to save (a little) memory, trim these comments!
  15. #
  16. #   Currently only 100 variables can be specified.  Extra VARs are ignored.
  17. #
  18. #   The variable names and boolean values are not case sensitive.
  19. #   Values may be case sensitive depending on usage.
  20. #
  21. #
  22. #   Memory to be reserved.  This is for ALL of TCP's internal memory
  23. #   requirements, except the space to store the config file.
  24. #   This includes all input queues, output queues, etc.
  25. #   It must be large enough to cope, plus a bit extra for luck :-)
  26. #   If unset, defaults to 20000 bytes.  10000 is probably enough
  27. #   for this simple version...
  28. #
  29. ALLOCMEM = 100000
  30. #
  31. #
  32. #    Use the program `showport.tos' to list the serial ports
  33. #    available with your hardware configuration.
  34. #
  35. SERIALPORT  =   Modem 2
  36. #
  37. #
  38. #   CDVALID     Set this variable to FALSE if your modem doesn't assert
  39. #               Carrier Detect properly.
  40. CDVALID = TRUE
  41. #
  42. #
  43. #   The name of the dial script file to use.
  44. #   Default is dial.scr
  45. #
  46. DIALFILE = dial.scr
  47. #
  48. #
  49. #    EXECDIR        Directory for launching a program (Defaults to current)
  50. #    EXECFILE     Program to start (But always shows the file selector first)
  51. #
  52. EXECDIR = c:\stik_cnf\cab\
  53. EXECFILE = html.app
  54. #
  55. #
  56. #   CLIENT_IP   if your provider allocates you a different Ip Address
  57. #   whenever you log in, then don't bother with CLIENT_IP
  58. #   However, if you have an IP address all to yourself, then put
  59. #   it here, in dotted decimal.  If your dial script file gets
  60. #   your address at login time, it will override this value.
  61. #
  62. #CLIENT_IP  158.152.*.*
  63. #
  64. #
  65. #   TCP paramaters.  Don't change without advice from a TCP freak :-)
  66. #   If left unset, they default to hardcoded (sensible) values.
  67. #
  68. TTL         =   64
  69. PING_TTL    =  255
  70. MTU         =  252
  71. MSS         =  212
  72. PKT_SIZE    =  256
  73. DFB_SIZE    =  560
  74. RCV_WND     = 2000
  75. #
  76. #
  77. #   Response to incoming TCP packets to unknown ports
  78. #   0 = default (3 = send ICMP)
  79. #   1 = ignore
  80. #   2 = send TCP RST
  81. #   3 = send ICMP `unknown port' response
  82. #
  83. #   2 is the correct response, but when connecting to an IRC server
  84. #   it attempts to contact your identd on port 113.  If it thinks you
  85. #   don't have identd, it will most probably reset your IRC session.
  86. #   Until I have written an identd, response 1 should fool at least
  87. #   some of the servers.  But NOT ALL OF THEM!  Some RST you regardless!
  88. #
  89. UP_RESPONSE =   2
  90. #
  91. #
  92. #   Enable log files.
  93. #
  94. #   To enable log files, set the appropriate VAR to ON or TRUE.
  95. #   (or use the form `PACKETLOG' without '= ...')
  96. #   *warning* these files can become HUGE very quickly
  97. #
  98. #   Also, if your ST crashes when these logs are writing, delete them
  99. #   straight away and check for missing and/or cross linked clusters!!
  100. #   (Just like any crash when files are open for writing)
  101. #
  102. #   SESSIONLOG  appends start/end times and byte counts to the file `session'.
  103. #   STATLOG     dumps various packet statistics to the file `stat.log'
  104. #   PACKETLOG   dumps every packet (in and out) to a file `pkt.log'.
  105. #   TCPHDRLOG   dumps TCP headers in readable form to `tcp.log'
  106. #   DEBUGLOG    dumps lot's of (useless) debug info to the file `debug.log'
  107. #
  108. SESSIONLOG = OFF
  109. STATLOG    = OFF
  110. PACKETLOG  = OFF
  111. TCPHDRLOG  = OFF
  112. DEBUGLOG   = OFF
  113. #
  114. #
  115. #   Your username and hostname.
  116. #
  117. #   HOSTNAME is the hostname of your computer for this session.
  118. #   If your address is dynamically allocated, HOSTNAME will be wrong.
  119. #   For now, just set it to your providers hostname (or whatever). 
  120. #   Try to make it reasonably accurate if possible.  When I have
  121. #   a domain name resolver working, I'll set it internally (by doing
  122. #   a lookup to d.c.b.a.IN-ADDR.ARPA)
  123. #
  124. #   USERNAME doesn't make much sense either until I have an identd
  125. #   working.  So it doesn't really matter what it is.  When I do have
  126. #   an identd, this will be your `valid' username for incoming queries.
  127. #   Currently, these values are only used when starting IRC sessions.
  128. #
  129. #   FULLNAME is pretty obvious, right?
  130. #
  131. USERNAME = username
  132. HOSTNAME = demon.co.uk
  133. FULLNAME = FULLNAME!
  134. #
  135. #
  136. #   Various server addresses
  137. #
  138. #   if PROVIDER is set, then it will be used for
  139. #   NAMESERVER, POPSERVER, SMTPSERVER, NEWSSERVER
  140. #   but only if these VARs are left unset.
  141. #
  142. #   The value for NAMESERVER *must* be in dotted decimal format.  If it
  143. #   is not set, then PROVIDER *must* be in dotted decimal.  Otherwise,
  144. #   you'll have no nameserver, and no host names will be resolved.
  145. #
  146. #   *** Actually, nameserver lookups are not yet implemented,
  147. #   *** so *every* host must be specified as dotted decimal)
  148. #
  149. PROVIDER = 158.152.1.65
  150. #
  151. #   Don't bother to set these unless there are different to PROVIDER
  152. #   Nameserver currently has no effect!!
  153. #
  154. #NAMESERVER = 
  155. #POPSERVER  = 
  156. #SMTPSERVER = 
  157. #NEWSSERVER = 
  158. #
  159. #
  160. #   IRC Stuff.
  161. #
  162. #   IRCNICK     = Your prefered IRC nick.  It might be in use, of course...
  163. #                 defaults to USERNAME if not set
  164. #
  165. IRCNICK     = Nickname
  166. #
  167. #
  168. #   IRC servers.  Currently, just one server
  169. #   can be specified, in dotted decimal...
  170. #   If port number is not specified, it defaults to 6667
  171. #
  172. # dismayl.demon.co.uk
  173. IRCSERVER = 158.152.1.76
  174. IRCPORT   = 6665
  175. #
  176. #   irc.escape.com
  177. #IRCSERVER = 198.6.71.13
  178. #IRCPORT   = 6664
  179. #
  180. #   uni-linz.ac.at
  181. #IRCSERVER = 140.78.3.7
  182. #
  183. #   jello.qabc.uq.oz.au
  184. #IRCSERVER = 130.102.46.10  
  185. #
  186. #   irc.eskimo.com
  187. #IRCSERVER = 204.122.16.98
  188. #IRCPORT = 6664
  189. #
  190. #   irc-2.mit.edu
  191. #IRCSERVER = 18.180.0.2
  192. #
  193. #   IRCPONGMSG      This is text for a /msg to be sent to the person
  194. #                   who pinged you.  If you want to save network
  195. #                   bandwidth, leave it commented out :-)
  196. #
  197. IRCPONGMSG = Yes, IRC is often slow and frustration, isn't it?
  198. #
  199. #
  200. #   IRC logs
  201. #
  202. #   IRCLOG  dumps raw IRC text lines into a file irc.log.
  203. #   IRCLOG2 dumps some IRC debug info into irc2.log.
  204. #   See warnings for log files above.
  205. #
  206. IRCLOG  = OFF
  207. IRCLOG2 = OFF
  208. #
  209. #
  210. #   Some POP variables.  Important for getting mail!!
  211. #
  212. #   POP_MAILBOX is the name of the file where new mail should go.
  213. #   New mail is appended to the file.
  214. #
  215. POP_USERNAME = pop_user
  216. POP_PASSWORD = pop_pass
  217. POP_MAILBOX  = spool\mail\nick.txt
  218. #
  219. #
  220. #   SMTP mailpath.  Directory for outgoing messages
  221. #
  222. SMTP_MAILPATH = spool\mqueue
  223. #
  224. #
  225. #   SMTP_HOSTNAME is the name that SMTP uses in it's initial HELO
  226. #   message to the mail server.  If it is not set, then HOSTNAME
  227. #   is used.  I don't know whether this is important or not...
  228. #
  229. SMTP_HOSTNAME = Yourhost.demon.co.uk
  230.